home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 4
/
Apprentice-Release4.iso
/
Source Code
/
C
/
Applications
/
MacPerl 5.0.3
/
MacPerl Source ƒ
/
Perl5
/
lib
/
tainted.pl
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-03-20
|
216 b
|
12 lines
|
[
TEXT/MPS
]
# This subroutine returns true if its argument is tainted, false otherwise.
die "tainted.pl not (yet) implemented on the Mac";
sub tainted {
local($@);
eval { kill 0 * $_[0] };
$@ =~ /^Insecure/;
}
1;